GetSearchResultsRequest

data class GetSearchResultsRequest(searchId: String, fromIndex: Int, toIndex: Int)

Represents request frame that can be used with DOM#getSearchResults operation call.

Returns search results from given fromIndex to given toIndex from the search with the given identifier.

See also

Constructors

GetSearchResultsRequest
Link copied to clipboard
fun GetSearchResultsRequest(searchId: String, fromIndex: Int, toIndex: Int)

Properties

fromIndex
Link copied to clipboard
val fromIndex: Int
Start index of the search result to be returned.
searchId
Link copied to clipboard
val searchId: String
Unique search session identifier.
toIndex
Link copied to clipboard
val toIndex: Int
End index of the search result to be returned.

Sources

jvm source
Link copied to clipboard